.navBar{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  height: 62px;
  background-color: white;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 100;
}


.navLogo{
  margin-right: 20px;

}

.menu a{
  list-style:none;
  display: inline-block;
  
  font-weight: 500;
  text-decoration: none;

  font-size: 0.8rem;
  margin: 0 20px;
  color: black;
  padding: 20px;
  

  font-family: "Verdana", sans-serif;
  border-bottom: 3px solid white;
  transition: all 0.5s ease;

}
.sideBar a{
  list-style:none;
  display: inline-block;
  
  font-weight: 500;
  text-decoration: none;

  font-size: 18px;
  margin: 0 20px;
  color: black;
  padding: 20px;
  

  font-family: "Verdana", sans-serif;
  transition: all 0.5s ease;

}

.menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;

}


.menuLeft {
  display: flex;
  align-items: center;
  gap: 5px; 
  
}

.menuLeft a:hover{
  color:rgb(0, 0, 0);
  border-bottom: 3px solid rgb(243, 124, 124);

}

#reserve:hover{
  color: white;
  background-color: rgb(243, 124, 124);
}





#reserve{
  
  list-style:none;
  text-decoration: none;
  display: inline-block;
  
  font-weight: 500;
  text-decoration: none;

  font-size: 0.8rem;

  color: black;
  
  font-family: "Verdana", sans-serif;

}

#brandlogo{
  width: auto;
  height: 60px;
  margin-left: 50px;
  margin-right: 0px;
}




.sideBar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.716);
  box-shadow: -10px 0 10px rgb(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 0;
}

#linkSide{
  width: 50%;
}


@media screen and (min-width: 921px) {
  .menu {
    display: flex;
  }

  #menuButton {
    display: none;
  }

  .sideBar {
    display: none ;
  }


}

@media screen and (max-width: 1440px) {
  .menu{
    display: none;
  }

  #menuButton{
    display: block;
  }


}

@media screen and (max-width: 920px) {
  .menu{
    display: none;
  }

  #menuButton{
    display: block;
  }


}



/* NAV BAR END */

body {
  background: #fdfbd4;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  width: auto;
}

h1 {
  font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
  color: black;
  font-size: 100px;
  text-align: center;
  margin-bottom: 30px;
}

p {
  line-height: 27px;
  font-family: "Verdana", sans-serif;
  text-align: center;
}

/* FOOTER */
.footer {
  height: 120px;
  border: 3px solid black;
  background: black;
  display: inline-block;
  align-items: center;
  width: 100%;
  text-align: center;
  color: white;
  padding-bottom: 10px;
}

.footer a {
  color: white;
  font-size: 25px;
}

.footer p {
  font-size: 12px;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* HERO IMAGE SECTION */
.hero-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-image.blurred {
  filter: brightness(0.6) blur(2px);
}

.hero-title-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-overlay h1 {
  font-family: "Marck Script", cursive;
  font-size: 80px;
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-title-overlay h1 {
    font-size: 50px;
  }
}

/* ZIGZAG LAYOUT */
.about-zigzag {
  display: flex;
  flex-direction: column;
  gap: 160px;
  padding: 80px 10%;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  scroll-margin-top: 100px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 420px;
}

.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-family: "Glass Antiqua", cursive;
  font-size: 36px;
  color: #134e4a;
  margin-bottom: 20px;
}

.about-text p {
  font-family: "Verdana", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
  }

  .about-image img {
    max-height: 300px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }
}

/* CTA SECTIONS */
.final-cta {
  text-align: center;
  margin: 80px 0 60px;
}

.final-cta h2 {
  font-family: "Glass Antiqua", cursive;
  font-size: 36px;
  color: #134e4a;
  margin-bottom: 20px;
}

.final-cta .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: black;
  color: white;
  font-size: 18px;
  font-family: "Verdana", sans-serif;
  border-radius: 10px;
  border: 2px solid black;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta .cta-button:hover {
  background-color: white;
  color: black;
}

.contact-feedback {
  text-align: center;
  margin: 100px 0 40px;
  padding: 0 20px;
}

.contact-feedback h2 {
  font-family: "Glass Antiqua", cursive;
  font-size: 32px;
  color: #134e4a;
  margin-bottom: 10px;
}

.contact-feedback p {
  font-family: "Verdana", sans-serif;
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.contact-feedback .cta-button {
  display: inline-block;
  margin: 10px;
  padding: 12px 30px;
  background-color: black;
  color: white;
  font-size: 16px;
  font-family: "Verdana", sans-serif;
  border-radius: 10px;
  border: 2px solid black;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-feedback .cta-button:hover {
  background-color: white;
  color: black;
}
